From 2828e45f2498d628cd4dcb0cf51a3f83c4f8bec7 Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 30 Aug 2005 20:40:16 +0000 Subject: [PATCH] Pick up missing 'else' clause. From Olaf. --- gpsbabel/csv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/csv_util.c b/gpsbabel/csv_util.c index e2ad5db8a..66d728218 100644 --- a/gpsbabel/csv_util.c +++ b/gpsbabel/csv_util.c @@ -928,7 +928,7 @@ xcsv_parse_val(const char *s, waypoint *wpt, const field_map_t *fmp) } else if ( strcmp( fmp->key, "HEART_RATE") == 0) { wpt->heartrate = atoi(s); - } + } else if ( strcmp( fmp->key, "PATH_DISTANCE_KM") == 0 ) { /* Ignored on input */ } else { -- 2.30.2